home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 September
/
EnigmA AMIGA RUN 30 (1998)(G.R. Edizioni)(IT)[!][issue 1998-09].iso
/
earkit
/
ftp
/
gui-ftp
/
rexx
/
default.filter
next >
Wrap
Text File
|
1998-07-09
|
238b
|
19 lines
/* REXX */
/*
** default.filter - simply echoes standard input to stadard output. Blank
** lines are suppressed.
*/
do until eof( STDIN )
parse pull T$
if ~ eof( STDIN ) then do
if T$ > "" then do
say T$
end
end
end
exit 0